home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / atnet.zip / ATNET.DOC < prev    next >
Text File  |  1991-08-16  |  4KB  |  111 lines

  1.                                  ATNET
  2.                                ShareWare
  3.                 LANtastic NET with Indirect File Support
  4.  
  5.      ATNET is a simple utility that allows you to execute several of the 
  6.      commands that are supported by the LANtastic NET command.  The 
  7.      advantage of using ATNET is that you have the capability of using 
  8.      indirect files to execute a series of commands.  By allowing you to 
  9.      execute multiple commands with a single invocation of the 
  10.      executable module, the time it takes to complete that series is 
  11.      reduced by the amount of time it takes to locate the program 
  12.      (somewhere along your path) and load it.
  13.  
  14.      In many instances, this can be a significant amount of time; 
  15.      particularly if you routinely log on to several servers and then 
  16.      USE many resources on those servers.  In our installation here, we 
  17.      log on to two different servers and establish 12 different 
  18.      redirections.  The amount of time saved here varies as follows:
  19.  
  20.                                          NET          ATNET
  21.  
  22.               8 mhz XT compatable        43             27
  23.               12 mhz AT compatable       20             12
  24.               25 mhz 386                  6              4
  25.  
  26.      NOTE: All times are in seconds as timed by Norton TM.
  27.  
  28.      The following commands are currently supported by ATNET:
  29.  
  30.               LOGIN
  31.               LOGOUT
  32.               USE
  33.               UNUSE
  34.               HELP
  35.               LPT TIMEOUT
  36.  
  37.      One nice feature that I have built into ATNET is that it will 
  38.      ignore the first parameter on a line within an indirect file if it 
  39.      is NET.  This means that if you have a .BAT file already set up to 
  40.      perform your logins, all you need to do is use that file name on 
  41.      the ATNET command line and you are in business.
  42.  
  43.      Below are a few examples that may help you see what I mean:
  44.  
  45.                                   LOGON.BAT
  46.  
  47.      net login \\server\user password
  48.      net use e: \\server\c-drive
  49.      net use lpt1 \\server\@printer
  50.  
  51.      As you can see, this simple batch file will work great; but to 
  52.      speed things up a little, you can simple do the following:
  53.  
  54.      ATNET @LOGIN.BAT
  55.  
  56.      Since ATNET ignores the leading NET, everything works fine.  You 
  57.      can also set up indirect files without the leading net:
  58.  
  59.                               INDIRECT.FIL
  60.  
  61.      login \\server\user password
  62.      use e: \\server\c-drive
  63.      use lpt1 \\server\@printer
  64.  
  65.      ATNET @INDIRECT.FIL
  66.  
  67.      One word of caution, ATNET is not very forgiving in its current 
  68.      incarnation.  It does not like invalid commands - it just complains 
  69.      and quits.
  70.  
  71.      I have included the Turbo C source code for ATNET so you can see 
  72.      how I do things.  But, I did not include the source for the library 
  73.      functions (LANTASTI.C).  If you would like to get that source, you 
  74.      will need to register with me and pay a small registration fee 
  75.      ($20).
  76.  
  77.      If you find that you use this program on a regular basis, please 
  78.      send me a note.  I would also appreciate a small contribution 
  79.      ($5-$10) so that I can justify spending time working on these 
  80.      utility programs.
  81.  
  82.      I hope you find this program useful.  To register please fill out 
  83.      the following and mail it to me (with any registration fee).
  84.  
  85.                            ATNET Registration
  86.  
  87.      NAME: ___________________________________________________________
  88.  
  89.      COMPANY: ________________________________________________________
  90.  
  91.      ADDRESS: ________________________________________________________
  92.  
  93.               ________________________________________________________
  94.  
  95.               ________________________________________________________
  96.  
  97.  
  98.               Registration Fee ($5 - $10 Suggested)   $ ______________
  99.  
  100.               Source Code Fee ($20)                     ______________
  101.  
  102.                                                Total: $ ______________
  103.  
  104.  
  105.      Please mail to:
  106.  
  107.               Ken Cline
  108.               7111 Dijohn Court Drive
  109.               Alexandria, VA  22310
  110.  
  111.